[1/3] core: make world state snapshots serializable - #29833
Merged
Conversation
sayan-oai
marked this pull request as ready for review
June 24, 2026 19:05
jif-oai
reviewed
Jun 24, 2026
anp-oai
approved these changes
Jun 25, 2026
sayan-oai
force-pushed
the
codex/world-state-snapshots
branch
from
June 25, 2026 00:36
46d2d19 to
27dac17
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why
WorldStatecurrently keeps its diff baseline as live Rust objects keyed by process-localTypeId. That baseline cannot be written to a rollout or restored after resume, so Codex reconstructs an approximation fromTurnContextItem.This is the first change in the WorldState persistence stack. It gives every section a stable persisted identity and a compact serializable comparison snapshot without changing rollout behavior yet.
What changed
WorldStateSectionto define a stable ID and serializable snapshot type.WorldState.WorldStateSnapshotinContextManager, removing the parallel live-object baseline.Follow-up PRs will record full snapshots and merge patches, then restore the baseline during resume, fork, and rollback.
Test plan
Related: #29249